home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / uwsrc.arc / MAKEFILE < prev    next >
Text File  |  1989-04-29  |  849b  |  31 lines

  1. # make file for uw compiled with mwc
  2. # GETSPEED, GETFLOW, and GETUCR use magic cookies to get the RS232
  3. # configuration.  Otherwise, the configuration is not known until
  4. # you set it.
  5. CFLAGS=-O -DMWC -DLOCATE='"c:\\bin"' -DGETSPEED -DGETFLOW -DGETUCR
  6.  
  7. all:    bldmform.prg mform.o win.prg startgem.prg
  8.     echo
  9.  
  10. OBJS=    winmain.o winsubr.o mform.o resetaux.o winhash.o winio.o winproto.o\
  11.         winproc.o kermit.o
  12.  
  13. win.prg:    $(OBJS)
  14.     $(CC) $(CFLAGS) -VGEM -s -o win.prg $(OBJS)
  15.  
  16. mform.o:    rmbblk1.icn lckblk1.icn
  17.     bldmform -ndR rmbmform rmbblk1.icn > mform.c
  18.     bldmform -ndR lckmform lckblk1.icn >> mform.c
  19.     $(CC) $(CFLAGS) -c mform.c
  20.  
  21. bldmform.prg:    bldmform.c
  22.     $(CC) $(CFLAGS) -o bldmform.prg bldmform.c
  23.  
  24. resetaux.o:    resetaux.s
  25.     $(CC) $(CFLAGS) -c resetaux.s
  26.  
  27. startgem.prg:    startgem.s
  28.     as -o startgem.o startgem.s
  29.     ld -s -o startgem.prg startgem.o
  30.     rm startgem.o
  31.